download a txt file containing links containing .7z on page through console
```js
const urls = Array.from(document.getElementsByTagName('a'))
.map(a => a.href)
.filter(href => href.includes('.7z'));
const blob = new Blob([urls.join('\n')], { type: 'text/plain' });
const a = document.createElement('a');
a.href = URL.createObjectURL(blob);
a.download = '7z_links.txt';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(a.href);
```
i just didnt want to use the torrent here bc it was slow and i didnt want to click/save 111 files
https://archive.org/download/textfiles-dot-com-2011
u then can
```
for /F %i in (7z_links.txt) do curl -L -O %i
```